home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…rary 6 (Reseller Edition) / Apple Ref. & Pres. Lib.v6.0.toast / pc / 3-Presentations / Apple Demos / Training / HyperCard 2.0 Training / Intro to HyperCard 2.0 / card_42562.txt < prev    next >
Text File  |  1990-08-24  |  883b  |  37 lines

  1. -- card: 42562 from stack: in.0
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 41313
  5. -- name: PRINTING PORTIONS OF CARDS
  6.  
  7.  
  8. -- part 1 (field)
  9. -- low flags: 01
  10. -- high flags: 0000
  11. -- rect: left=129 top=194 right=235 bottom=373
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 0
  15. -- font id: 3
  16. -- text size: 9
  17. -- style flags: 0
  18. -- line height: 12
  19. -- part name: 
  20.  
  21.  
  22. -- part contents for background part 5
  23. ----- text -----
  24.  
  25. In HyperTalk 2.0 scripts can print portions of cards. You specify the top left and bottom right corners of the rectangle to be printed, in coordinates local to the card window (and not to the screen).
  26.  
  27.      
  28.  
  29. -- part contents for background part 6
  30. ----- text -----
  31. PRINTING PORTIONS OF CARDS
  32.  
  33. -- part contents for card part 1
  34. ----- text -----
  35. on mouseUp 
  36.          print card from 100,100 to 300, 500
  37. end mouseUp